home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ Delphi Options.xpl < prev    next >
Text File  |  2000-08-07  |  2KB  |  67 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 5.0"
  2. "TYPE"="6"
  3. "COUNT"="2"
  4. "UIPATH"="Program Options\Other Programs\Delphi"
  5. "NAME"="Delphi CPU Window"
  6. "VERSION"="1.14"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Enable Delphi 2.x CPU Window"
  9. "TEXT 2"="Enable Delphi 3.x CPU Window"
  10. "DESCRIPTION 1"="Activating this feature adds the command "CPU Window" to Delphi."
  11. "DESCRIPTION 2"="Simply select "CPU Window" from the "View" menu and you will see a Disassembly View of the current stack."
  12. "DESCRIPTION 3"="Note: Some menus don't work."
  13. "AUTHOR"="Xteq Systems"
  14. "CONTACTURL"="http://www.xteq.com"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17. "COMMENT 2"="from "Registry Dompteur" RegDom (c) 1996..98 by Horst Schmid, Horst_Schmid@compuserve.com"
  18.  
  19.  
  20.  
  21. sP1="HKCU\Software\Borland\Delphi\"
  22. sP2=".0\Debugging\ENABLECPU"
  23. Sub Plugin_Initialize 
  24.  if RegPathExists(sP1)=true then
  25.     s=RegReadValue(sP1 & "2" & sP2)
  26.     if s="1" then
  27.        SetUIElement 1,true
  28.     end if
  29.  
  30.     s=RegReadValue(sP1 & "3" & sP2)
  31.     if s="1" then
  32.        SetUIElement 2,true
  33.     end if
  34.  else
  35.     Call Disable()
  36.  end if
  37. End Sub
  38.  
  39.  
  40. Sub Plugin_CheckData(ElementIndex)
  41. End Sub
  42.  
  43.  
  44.  
  45. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  46.  b=GetUIElement(1)
  47.  if b=true then
  48.   Call RegWriteValue(sP1 & "2" & sP2,"1",1)
  49.  else
  50.   Call RegWriteValue(sP1 & "2" & sP2,"0",1)
  51.  end if
  52.  
  53.  b=GetUIElement(2)
  54.  if b=true then
  55.   Call RegWriteValue(sP1 & "3" & sP2,"1",1)
  56.  else
  57.   Call RegWriteValue(sP1 & "3" & sP2,"0",1)
  58.  end if
  59. End Sub
  60.  
  61.  
  62. Sub Plugin_Terminate 
  63. End Sub
  64.  
  65.  
  66.  
  67.